/*Corporate Social Responsiblity*/

.container-new {
  
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    width: 100%;
    position: relative;
 }

 .box {
    width:300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }  
  

  .box img {
    width: 100%;
    height: auto;
  }

  .box-content {
    padding: 16px;
  }

  .box-content h3 {
    font-size: 20px;
    margin: 0 0 8px;
  }

  .box-content p {
    font-size: 14px;
    color: #555;
    margin: 0 0 16px;
  }

  .box-content a {
    display:flex;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    font-weight: bold;
  }

  .box-content a::after {
    content: "→";
    margin-left: 8px;
    font-size: 18px;
  }
